home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / misc / plhelp / plgrid < prev    next >
Text File  |  1994-05-10  |  1KB  |  40 lines

  1. plgrid:
  2.  
  3. Synopsis: Set the grid type for the current sub-plot.
  4.  
  5. Syntax: plgrid ( GRID_STY_X , GRID_STY_Y )
  6.  
  7. Description:
  8.  
  9.     Set the grid type for the current sub-plot in the curent
  10.     plot-window. The grid type is specified by a string. The
  11.     possible elements of the string are described below. The
  12.     string can include any combination of the following letters
  13.     (lower case) in any order. If plgrid is called without any
  14.     arguments, the defaults are reset. 
  15.  
  16.     a    Draws axis, X-axis is horizontal line 
  17.         (at y=0), and Y-axis is vertical line (at x=0).
  18.  
  19.     b    Draws bottom (X) or left (Y) edge of frame.
  20.     c    Draws top (X) or right (Y) edge of frame.
  21.     g    Draws a grid at the major tick interval.
  22.     i    Inverts tick marks, so they are drawn
  23.         outwards, rather than inwards.
  24.     l    Scales axis logarithmithecally.
  25.     m    Writes numeric labels at major tick intervals 
  26.         in the unconventional location 
  27.         (above box for X, right of box for Y).
  28.     n    Writes numeric labels at major tick intervals 
  29.         in the conventional location 
  30.         (below box for X, left of box for Y).
  31.     s    Enables subticks between major ticks, only
  32.         valid if "t" is also specified.
  33.     t    Draws major ticks.
  34.  
  35.     Example - Set X and Y logarithmic scales:
  36.  
  37.         plgrid ( "bcgnstl", "bcgnstlv")
  38.  
  39. See Also: plaxis
  40.